home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Menus / frontierMenu.tcl < prev    next >
Encoding:
Text File  |  1998-04-25  |  24.7 KB  |  907 lines  |  [TEXT/ALFA]

  1. ## -*-Tcl-*-
  2.  # ###################################################################
  3.  #  Frontier menu - tools for using Alpha as Frontier's external editor
  4.  # 
  5.  #  FILE: "frontierMenu.tcl"
  6.  #                                    created: 97-04-03 22.01.22 
  7.  #                                last update: 98-04-25 16.02.07 
  8.  #  Author: Johan Linde
  9.  #  E-mail: <jl@theophys.kth.se>
  10.  #     www: <http://bach.theophys.kth.se/~jl/Alpha.html>
  11.  #  
  12.  # Version: 2.1.4
  13.  # 
  14.  # Copyright 1997, 1998 by Johan Linde
  15.  #  
  16.  # Much of the tcl code and the Frontier scripts have been written by 
  17.  # Danis Georgiadis <dmg@hyper.gr>
  18.  # 
  19.  # This software may be used freely, and distributed freely, as long as the 
  20.  # receiver is not obligated in any way by receiving it.
  21.  #  
  22.  # If you make improvements to this file, please share them!
  23.  # 
  24.  # ###################################################################
  25.  ##
  26.  
  27. if {[alpha::package vsatisfies ${alpha::version} 7.1b8]} {
  28. alpha::menu frontierMenu 2.1.4 global "•142" {} {frontierMenu} {
  29.     catch {removeMenu $frontierScriptMenu}
  30. } uninstall {
  31.     removeFile $pkg_file
  32.     removeFile "$HOME:Help:Frontier Help"
  33. } maintainer {
  34.     "Johan Linde" jl@theophys.kth.se <http://www.theophys.kth.se/~jl/Alpha.html>
  35. } help {file "Frontier Help"}
  36. } else {
  37. ;alpha::menu frontierMenu 2.1.4 "•142" in_menu {
  38. } uninstall {
  39.     removeFile $pkg_file
  40.     removeFile "$HOME:Help:Frontier Help"
  41. } maintainer {
  42.     "Johan Linde" jl@theophys.kth.se <http://www.theophys.kth.se/~jl/Alpha.html>
  43. } help {file "Frontier Help"}
  44. }
  45.  
  46. proc frontierMenu {} {}
  47. set frontierScriptMenu •144
  48.  
  49.  
  50. # Preferences
  51. newPref f autoLaunch 0 Fron
  52. newPref v BrowsePoints {{root root} {Websites websites}} Fron
  53. newPref v OpenPoints {{Websites websites} {Glossary user.html.glossary} {Templates user.html.templates}} Fron
  54.  
  55. # Register hooks
  56. hook::register closeHook frontierCloseHook
  57. hook::register savePostHook frontierSavePostHook
  58. hook::register saveasHook frontierSaveasHook
  59.  
  60. if {[alpha::package vsatisfies ${alpha::version} 7.1b1]} {
  61. proc frontierBrowseMenu {} {
  62.     global FronmodeVars
  63.     set bl {}
  64.     foreach b $FronmodeVars(BrowsePoints) {
  65.         lappend bl [lindex $b 0]
  66.     }
  67.     return [list Menu -n Browse -p frontierMenuProc -m [concat $bl [list "(-" "Browse at…" Add… Remove…]]]
  68. }
  69.  
  70. proc frontierOpenMenu {} {
  71.     global FronmodeVars
  72.     set bl {}
  73.     foreach b $FronmodeVars(OpenPoints) {
  74.         lappend bl [lindex $b 0]
  75.     }
  76.     return [list Menu -n Open -p frontierMenuProc -m [concat $bl [list "(-" "Open…" Add… Remove…]]]
  77. }
  78. } else {
  79. proc frontierBrowseMenu {} {
  80.     global FronmodeVars
  81.     set bl {}
  82.     foreach b $FronmodeVars(BrowsePoints) {
  83.         lappend bl [lindex $b 0]
  84.     }
  85.     return [list menu -n Browse -p frontierMenuProc -m [concat $bl [list "(-" "Browse at…" Add… Remove…]]]
  86. }
  87.  
  88. proc frontierOpenMenu {} {
  89.     global FronmodeVars
  90.     set bl {}
  91.     foreach b $FronmodeVars(OpenPoints) {
  92.         lappend bl [lindex $b 0]
  93.     }
  94.     return [list menu -n Open -p frontierMenuProc -m [concat $bl [list "(-" "Open…" Add… Remove…]]]
  95. }
  96. }
  97.  
  98. # Menu definition
  99. proc menu::buildFrontierMenu {} {
  100.     global frontierMenu
  101.     return [list build [list  \
  102.     "<U<O/Fswitch toFrontier" \
  103.     "<U<O/'previewPage" \
  104.     "<B<O/'publishPage" \
  105.     "<I<O/YfrontierShell" \
  106.     [frontierBrowseMenu] \
  107.     [frontierOpenMenu] \
  108.     "rebuildScriptsMenu" \
  109.     preferences…] \
  110.     frontierMenuProc "" $frontierMenu]
  111. }
  112.  
  113. menu::buildProc frontierMenu menu::buildFrontierMenu
  114. menu::buildSome frontierMenu
  115.  
  116. proc frontierMenuProc {menu item} {
  117.     global frontierMenu FronmodeVars
  118.     switch -glob $menu {
  119.         •* {
  120.             switch -glob $item {
  121.                 "switch*toFrontier" {frontierLaunch Fore}
  122.                 preferences {FronmodifyFlags}
  123.                 default {eval frontier$item}
  124.             }
  125.         }
  126.         Browse {
  127.             switch $item {
  128.                 "Browse at" {frontierBrowseAt}
  129.                 Add {frontierAddPoint Browse}
  130.                 Remove {frontierRemovePoint Browse}
  131.                 default {
  132.                     foreach b $FronmodeVars(BrowsePoints) {
  133.                         if {[lindex $b 0] == $item} {
  134.                             frontierCheckExist [lindex $b 1] $item Browse
  135.                             odbBrowse [lindex $b 1]
  136.                             break
  137.                         }
  138.                     }
  139.                 }
  140.             }
  141.         }
  142.         Open {
  143.             switch $item {
  144.                 Open {frontierOpen}
  145.                 Add {frontierAddPoint Open}
  146.                 Remove {frontierRemovePoint Open}
  147.                 default {
  148.                     foreach b $FronmodeVars(OpenPoints) {
  149.                         if {[lindex $b 0] == $item} {
  150.                             frontierCheckExist [lindex $b 1] $item Open
  151.                             frontierDoScript "edit (@[lindex $b 1])" front
  152.                             break
  153.                         }
  154.                     }
  155.                 }
  156.             }
  157.         }
  158.     }
  159. }
  160.  
  161. proc frontierCheckExist {item mitem type} {
  162.     if {[frontierDoScript defined($item)] == "false"} {
  163.         alertnote "$mitem no longer exists in the database. It is removed from the menu."
  164.         frontierDoTheRemove $type $mitem
  165.         error ""
  166.     }
  167.     
  168. }
  169. # Called by Frontier when opening a Frontier text document in Alpha.
  170. proc openFromFrontier {} {
  171.     global frontierWinList
  172.     set name [lindex [winNames -f] 0]
  173.     set name0 [stripNameCount $name]
  174.     regsub -all {\[|\]} $name0 {\\&} name0
  175.     if {[lsearch -exact $frontierWinList $name0] < 0} {lappend frontierWinList $name0}
  176. }
  177.  
  178. # If the current document is a Frontier document, it is updated in Frontier.
  179. proc frontierSavePostHook {name} {
  180.     global frontierWinList
  181.     if {[lsearch -exact $frontierWinList $name] >= 0} {
  182.         frontierLaunch
  183.         regsub -all {\\([][])} $name {\1} name
  184.         AEBuild 'LAND' ALFA FMod "----" "“${name}”"
  185.     }
  186. }
  187.  
  188. proc frontierLaunch {{b Back}} {
  189.     if {![app::isRunning LAND]} {
  190.         if {[catch {eval app::launch$b LAND}]} {
  191.             alertnote "Could not launch Frontier."
  192.             error "Launch error"
  193.         }
  194.     } elseif {$b == "Fore"} {
  195.         switchTo 'LAND'
  196.     }
  197. }
  198.  
  199. # A list of windows opened from Frontier.
  200. if {![info exists frontierWinList]} {set frontierWinList {}}
  201.  
  202. # Executes a script in Frontier.
  203. proc frontierDoScript {script {front 0} {alert 1} {queue 0}} {
  204.     if {[catch frontierLaunch]} {error "Could not launch Frontier."}
  205.     if {$queue} {
  206.         # Never switch to Frontier when queing.
  207.         dosc -c 'LAND' -q -t 30000 -s $script
  208.         return
  209.     } elseif {[catch {dosc -c 'LAND' -s $script} returnvalue]} {
  210.         if {$alert} {
  211.             alertnote "Frontier $returnvalue"
  212.             error "Frontier $returnvalue"
  213.         }
  214.         error $returnvalue
  215.     } elseif {$front == "front"} {
  216.         switchTo 'LAND'
  217.     }
  218.     return $returnvalue
  219. }
  220.  
  221. # Executes one of the scripts in Frontier, which are required to use Alpha with Frontier.
  222. proc frontierDoAlphaScript {script {queue 0}} {
  223.     global HOME frontierHasWarned
  224.     if {[catch {frontierDoScript $script 0 0 $queue} res]} {
  225.         frontierError
  226.         error $res
  227.     }
  228.     return $res
  229. }
  230.  
  231. proc frontierError {} {
  232.     global frontierHasWarned
  233.     if {![info exists frontierHasWarned]} {
  234.         alertnote "The Frontier verbs required to integrate Alpha and Frontier have not been\
  235.           properly installed. See the file 'Frontier Help.'"
  236.         edit -r -c "$HOME:Help:Frontier Help"
  237.     }
  238. }
  239.     
  240. # closeHook
  241. # If the window to be closed is a Frontier document, it is removed
  242. # from Frontier's list of open external documents.
  243. proc frontierCloseHook {name} {
  244.     global frontierWinList frontierQSWin frontierCommandHistory frontierCommandNum
  245.     if {[set where [lsearch -exact $frontierWinList $name]] >= 0} {
  246.         regsub -all {\\([][])} $name {\1} name
  247.         set frontierWinList [lreplace $frontierWinList $where $where]
  248.         catch {AEBuild 'LAND' ALFA FCls "----" "“${name}”"}
  249.     }
  250.     if {$name == $frontierQSWin} {set frontierCommandHistory ""; set frontierCommandNum 0}
  251. }
  252.  
  253. # saveasHook
  254. proc frontierSaveasHook {oldname newname} {
  255.     frontierCloseHook $oldname
  256. }
  257.  
  258.  
  259. # Does the same as 'Preview Page' in Frontier's web menu.
  260. proc frontierpreviewPage {} {
  261.     frontierPrePub viewInBrowser
  262. }
  263.  
  264. # Does the same as 'Publish Page' in Frontier's web menu.
  265. proc frontierpublishPage {} {
  266.     frontierPrePub publishPage
  267. }
  268.  
  269. proc frontierPrePub {script} {
  270.     global frontierWinList
  271.     if {![llength [winNames]]} {
  272.         alertnote "No window!"
  273.         return
  274.     }
  275.     set name [lindex [winNames -f] 0]
  276.     set name0 [stripNameCount $name]
  277.     regsub -all {\[|\]} $name0 {\\&} name0
  278.     if {[lsearch -exact $frontierWinList $name0] >= 0} {
  279.         if {[winDirty]} {
  280.             if {[set ask [askyesno -c "Save '[file tail $name]'?"]] == "yes"} {
  281.                 save
  282.             } elseif {$ask == "cancel"} {
  283.                 return
  284.             }
  285.         }
  286.         regsub -all "\"" $name0 "\\\"" name0
  287.         frontierDoScript "Alpha.${script}(\"[string tolower $name0]\")"
  288.     } else {
  289.         alertnote "Not a Frontier window."
  290.     }
  291. }
  292.  
  293. # Open a window in Frontier
  294. proc frontierOpen {} {
  295.     if {![catch {frontierGetAddress} addr]} {
  296.         frontierDoScript "edit (@$addr)" front
  297.     }
  298. }
  299.  
  300. # Browse a table in Frontier
  301. proc frontierBrowseAt {} {
  302.     if {![catch {frontierGetAddress} addr]} {
  303.         odbBrowse $addr
  304.     }
  305. }
  306.  
  307. # Add to Browse and Open submenus
  308. proc frontierAddPoint {type} {
  309.     global FronmodeVars modifiedModeVars
  310.     set values ""
  311.     while {1} {
  312.         set values [dialog -w 450 -h 130 -t "Add $type menu item" 30 10 290 30 \
  313.             -t "Location in database:" 10 40 160 60 -e [lindex $values 0] 165 40 440 55 \
  314.             -t "Menu text:" 78 70 160 90 -e [lindex $values 1] 165 70 440 85 \
  315.             -b OK 20 100 85 120 -b Cancel 105 100 170 120]
  316.         if {[lindex $values 3]} {return}
  317.         set addr [string trim [lindex $values 0]]
  318.         if {$addr == ""} {alertnote "Location is database must be specified."; continue}
  319.         set text [string trim [lindex $values 1]]
  320.         if {$text == ""} {alertnote "The menu item must be specified."; continue}
  321.         if {[frontierDoScript "defined($addr)"] == "true"} {
  322.             set ex 0
  323.             foreach b $FronmodeVars(${type}Points) {
  324.                 if {[lindex $b 0] == $text} {alertnote "A menu item '$text' already exists."; set ex 1}
  325.             }
  326.             if {!$ex} {break}
  327.         } else {
  328.             alertnote "“$addr” is not a valid database address."
  329.         }
  330.     }
  331.     lappend FronmodeVars(${type}Points) [list $text $addr]
  332.     lappend modifiedModeVars [list ${type}Points FronmodeVars]
  333.     eval [eval frontier${type}Menu]
  334. }
  335.  
  336. # Remove from Browse and Open submenus.
  337. proc frontierRemovePoint {type} {
  338.     global FronmodeVars
  339.     set points {}
  340.     foreach b $FronmodeVars(${type}Points) {
  341.         lappend points [lindex $b 0]
  342.         set pointat([lindex $b 0]) [lindex $b 1]
  343.     }
  344.     if {![llength $points] || [catch {listpick -p "Select [string tolower $type] point to remove:" -l $points} points] ||
  345.         ![llength $points]} {return}
  346.     set points [lindex $points 0]
  347.     if {[askyesno "'$points' points to '$pointat($points)'. Remove?"] != "yes"} {return}
  348.     frontierDoTheRemove $type $points
  349. }
  350.  
  351. proc frontierDoTheRemove {type points} {
  352.     global FronmodeVars modifiedModeVars
  353.     set n {}
  354.     foreach b $FronmodeVars(${type}Points) {
  355.         if {[lindex $b 0] != $points} {lappend n $b}
  356.     }
  357.     set FronmodeVars(${type}Points) $n
  358.     lappend modifiedModeVars [list ${type}Points FronmodeVars]
  359.     eval [eval frontier${type}Menu]
  360. }
  361.  
  362. proc frontierGetAddress {} {
  363.     while {1} {
  364.         if {[catch {set addr [prompt "Location in Frontier database:" ""]}]} {
  365.             error ""
  366.         } else {
  367.             set addr [string trimleft [string trim $addr] {@}]
  368.             switch [frontierDoScript "defined($addr)"] {
  369.                 "true"        {return $addr}
  370.                 "false"        {alertnote "“$addr” is not a valid database address"}
  371.                 ""            {error ""}
  372.             }
  373.         }
  374.     }
  375. }
  376.  
  377. proc FronmodifyFlags {} {
  378.     global FronmodeVars modifiedModeVars
  379.     set values [dialog -w 300 -h 110 -t "Frontier Preferences" 30 10 290 30 \
  380.         -c "Launch Frontier at startup" $FronmodeVars(autoLaunch) 10 40 290 60 \
  381.         -b OK 20 80 85 100 -b Cancel 105 80 170 100]
  382.     if {[lindex $values 2]} {return}
  383.     set i -1
  384.     foreach flag [list autoLaunch] {
  385.         global $flag
  386.         incr i
  387.         set val [lindex $values $i]
  388.         if {$FronmodeVars($flag) != $val} {
  389.             set $flag $val
  390.             set FronmodeVars($flag) $val
  391.             lappend modifiedModeVars [list $flag FronmodeVars]
  392.         }
  393.     }
  394. }
  395.  
  396. proc OdbmodifyFlags {} {
  397.     FronmodifyFlags
  398. }
  399.  
  400. proc frontierGetWin {} {
  401.     global frontierWinList frontierWinNum
  402.     if {![info exists frontierWinNum]} {set frontierWinNum 0}
  403.     if {[llength $frontierWinList] == $frontierWinNum} {
  404.         unset frontierWinNum
  405.         return ""
  406.     } else {
  407.         return [lindex $frontierWinList [expr [incr frontierWinNum] - 1]]
  408.     }
  409. }
  410.  
  411. proc frontierCloseAllWindows {} {
  412.     global frontierWinList
  413.     foreach win $frontierWinList {
  414.         regsub -all {\\([][])} $win {\1} win
  415.         bringToFront $win
  416.         setWinInfo dirty 0
  417.         killWindow
  418.     }
  419. }
  420.  
  421. #===============================================================================
  422. # Script menu
  423. # The code to extract a Frontier menu has been written by
  424. # Danis Georgiadis <dmg@hyper.gr>
  425. #===============================================================================
  426.  
  427. proc setFrontierMenuScript {menu item scpt} {
  428.     global frontierMenuScripts
  429.     if {[regexp {&$} $item]} {
  430.         set item [string trimright $item &]
  431.     } else {
  432.         regsub -all {<[BUISEO]} $item "" item
  433.         regsub {/[a-zA-Z]} $item "" item
  434.         regsub -all {[!\^].} $item "" item
  435.     }
  436.     set key [string trimright "$menu$item" …]
  437.     set frontierMenuScripts($key) $scpt
  438. }
  439.  
  440. proc frontierBuildScriptMenu {} {
  441.     global frontierScriptMenu FronmodeVars
  442.  
  443.     if {![app::isRunning LAND]} {
  444.         if {$FronmodeVars(autoLaunch)} {
  445.             app::launchBack LAND
  446.         } else {
  447.             return
  448.         }
  449.     }
  450.     currentReplyHandler frontierGetMenuReplyHandler
  451.     frontierDoAlphaScript "Alpha.getMenuSource()" 1
  452.  
  453. }
  454.  
  455. proc frontierScriptMenuProc {menu item} {
  456.     global frontierMenuScripts frontierScriptMenu
  457.     if {$menu == $frontierScriptMenu} {set menu ""}
  458.     set key "$menu$item"
  459.     frontierDoScript $frontierMenuScripts($key)
  460. }
  461.  
  462. proc frontierrebuildScriptsMenu {} {
  463.     global frontierMenuScripts
  464.     frontierLaunch
  465.     currentReplyHandler frontierInvalReplyHandler
  466.     frontierDoAlphaScript "Alpha.invalMenuSources()" 1
  467. }
  468.  
  469. proc frontierGetMenuReplyHandler {args} {
  470.     global frontierScriptMenu
  471.     if {[string range $args 12 16] == "errs:"} {
  472.         frontierError
  473.     } else {
  474.         regexp {“([^”]*)”} $args dum txt
  475.         regsub -all {\\\{} $txt "{" txt
  476.         regsub -all {\\\}} $txt "}" txt
  477.         menu -m -n $frontierScriptMenu -p frontierScriptMenuProc $txt
  478.         insertMenu $frontierScriptMenu
  479.          currentReplyHandler frontierGetDefsReplyHandler
  480.         catch {frontierDoAlphaScript "Alpha.getDefsSource()" 1}
  481.     }
  482.     return 1
  483. }
  484.  
  485. proc frontierGetDefsReplyHandler {args} {
  486.     if {[string range $args 12 16] == "errs:"} {
  487.         frontierError
  488.     } else {
  489.         regexp {“([^”]*)”} $args dum txt
  490.         regsub -all {\\\{} $txt "{" txt
  491.         regsub -all {\\\}} $txt "}" txt
  492.         catch {eval $txt}
  493.     }
  494.     message "Frontier script menu built."
  495.     return 1    
  496. }
  497.  
  498. proc frontierInvalReplyHandler {args} {
  499.     catch {unset frontierMenuScripts}
  500.     catch {frontierBuildScriptMenu}
  501.     return 1
  502. }
  503.  
  504.  
  505. #===============================================================================
  506. #
  507. # Frontier shell
  508. # Some ideas taken from Matlab mode by Stephen Merkowitz
  509. #===============================================================================
  510. set frontierQSWin "* Frontier shell *"
  511. set frontierCommandHistory ""
  512. set frontierCommandNum 0
  513.  
  514. proc frontierfrontierShell {} {
  515.     global frontierQSWin
  516.     
  517.     if {[lsearch [winNames] $frontierQSWin] >= 0} {
  518.         bringToFront $frontierQSWin
  519.     } else {
  520.         new -n $frontierQSWin -m Fron
  521.         setWinInfo -w $frontierQSWin shell 1
  522.         insertText "Welcome to Alpha's Frontier shell\r«» "
  523.     }
  524. }
  525.  
  526.  
  527. proc frontierRunQuickScript {} {
  528.     global frontierCommandHistory frontierCommandNum frontierQSWin
  529.     set pos [getPos]
  530.  
  531.     set ind [string first "«» " [getText [lineStart $pos] [nextLineStart [getPos]]]]
  532.     if {$ind >= 0} {
  533.         set lStart [expr [lineStart $pos]+$ind+2]
  534.         endOfLine
  535.         set scriptName [getText $lStart [getPos]]
  536.         if {[getPos] != [maxPos]} {
  537.             goto [maxPos]
  538.             insertText $scriptName
  539.         }
  540.         
  541.         if {[string trim $scriptName] != ""} {
  542.             catch {frontierDoScript $scriptName 0 0} result
  543.             if {[string compare [lindex $frontierCommandHistory [expr [llength $frontierCommandHistory]-1]] $scriptName] != 0} {
  544.                 lappend frontierCommandHistory $scriptName
  545.                 if {[llength $frontierCommandHistory] > 30} {
  546.                     set frontierCommandHistory [lrange $frontierCommandHistory 1 end]
  547.                 }
  548.             }
  549.             set frontierCommandNum [llength $frontierCommandHistory]
  550.         } else {
  551.             set result ""
  552.         }
  553.         if {[string length $result]} {
  554.             insertText -w $frontierQSWin "\r" $result \r "«» "
  555.         } else {
  556.             insertText -w $frontierQSWin \r "«» "
  557.         }
  558.     } else {
  559.            if {[getPos] == [maxPos]} {
  560.             insertText "«» "
  561.         } else {
  562.             bind::CarriageReturn
  563.         }
  564.     }
  565.     return
  566. }
  567.  
  568.  
  569. proc frontierPrevCommand {} {
  570.     global frontierCommandHistory frontierCommandNum
  571.     
  572.     set text [getText [lineStart [getPos]] [nextLineStart [getPos]]]
  573.     if {[set ind [string first "«» " $text]] == 0} {
  574.         goto [expr [lineStart [getPos]] + $ind + 2]
  575.     } else return
  576.  
  577.     incr frontierCommandNum -1
  578.     if {$frontierCommandNum < 0} {
  579.         incr frontierCommandNum
  580.         endOfLine
  581.         return
  582.     }
  583.     set text [lindex $frontierCommandHistory $frontierCommandNum]
  584.     set to [nextLineStart [getPos]]
  585.     if {[lookAt [expr $to-1]] == "\r"} {incr to -1}
  586.     replaceText [getPos] $to $text
  587. }
  588.  
  589.  
  590. proc frontierNextCommand {} {
  591.     global frontierCommandHistory frontierCommandNum
  592.     
  593.     set text [getText [lineStart [getPos]] [nextLineStart [getPos]]]
  594.     if {[set ind [string first "«» " $text]] == 0} {
  595.         goto [expr [lineStart [getPos]] + $ind + 2]
  596.     } else return
  597.  
  598.     incr frontierCommandNum
  599.     if {$frontierCommandNum >= [llength $frontierCommandHistory]} {
  600.         incr frontierCommandNum -1
  601.         frontierCancelLine
  602.         return
  603.     }
  604.     set text [lindex $frontierCommandHistory $frontierCommandNum]
  605.     set to [nextLineStart [getPos]]
  606.     if {[lookAt [expr $to-1]] == "\r"} {incr to -1}
  607.     replaceText [getPos] $to $text
  608. }
  609.  
  610. proc frontierCancelLine {} {
  611.     global frontierCommandHistory frontierCommandNum
  612.  
  613.     set text [getText [lineStart [getPos]] [nextLineStart [getPos]]]
  614.     if {[set ind [string first "«» " $text]] == 0} {
  615.         goto [expr [lineStart [getPos]] + $ind + 3]
  616.     } else return
  617.     
  618.     set to [nextLineStart [getPos]]
  619.     deleteText [getPos] $to
  620.     
  621.     set frontierCommandNum [llength $frontierCommandHistory]
  622. }
  623.  
  624. proc frontierBol {} {
  625.     set text [getText [lineStart [getPos]] [nextLineStart [getPos]]]
  626.     if {[set ind [string first "«» " $text]] == 0} {
  627.         goto [expr [lineStart [getPos]] + $ind + 3]
  628.     } else {
  629.         goto [lineStart [getPos]]
  630.     }
  631. }
  632.  
  633. proc Fron::OptionTitlebar {} {
  634.     global frontierCommandHistory
  635.     return $frontierCommandHistory
  636. }
  637.  
  638. proc Fron::OptionTitlebarSelect {item} {
  639.     insertText [string range $item [expr 1+[string first " " $item]] end]
  640.     if {[key::optionPressed]} {frontierRunQuickScript}
  641. }
  642.  
  643. regModeKeywords -m {«} Fron {}
  644. bind up <z> frontierPrevCommand Fron
  645. bind down <z> frontierNextCommand Fron
  646. bind '\r' frontierRunQuickScript Fron
  647. bind 'u'  <z>  frontierCancelLine  Fron
  648. bind left <c> frontierBol Fron
  649. bind 'a' <z> frontierBol Fron
  650.  
  651. #===============================================================================
  652. # Odb browser
  653. # Written by Danis Georgiadis <dmg@hyper.gr> and modified by me to be integrated 
  654. # with the rest.
  655. #===============================================================================
  656.  
  657. set odbBrowserTabLength 3
  658. set odbBrowserTypeOffset 60
  659.  
  660. proc odbget120Spaces {} {
  661.     set spaces40 "                                        "
  662.     return "$spaces40$spaces40$spaces40"
  663. }
  664.  
  665. proc odbGetIndLevel {indStr} {
  666.     global odbBrowserTabLength
  667.     return [expr [string length $indStr] / $odbBrowserTabLength]
  668. }
  669.  
  670. proc odbGetIndString {indLevel} {
  671.     global odbBrowserTabLength
  672.     return [string range [odbget120Spaces] 0 [expr [expr $indLevel * $odbBrowserTabLength] - 1]]
  673. }
  674.  
  675. proc odbGetNextIndString {thisIndStr} {
  676.     return [odbGetIndString [expr [odbGetIndLevel $thisIndStr] + 1]]
  677. }
  678.  
  679. proc odbBrowseGetLineParts {name type addr level} {
  680.     global odbBrowserTypeOffset
  681.     global odbBrowserTabLength
  682.     
  683.     set indPadPart [odbGetIndString $level]
  684.     set namePart [string trim $name "\t "]
  685.     set typePadSize [expr $odbBrowserTypeOffset - [expr [string length $indPadPart] + [string length $name]]]
  686.     set typePadPart [string range [odbget120Spaces] 0 [expr $typePadSize - 1]]
  687.     set typePart "◊$type◊"
  688.     set addrPart "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t∞$addr∞"
  689.     
  690.     set res ""
  691.     lappend res $indPadPart $namePart $typePadPart $typePart $addrPart
  692.     
  693.     return $res
  694. }
  695.  
  696. proc odbBrowseDown {} {
  697.     set curPos [getPos]
  698.     set curLineStart [lineStart $curPos]
  699.     set curLineEnd [nextLineStart $curPos]
  700.     select $curLineStart $curLineEnd
  701.     
  702.     set newLineStart [nextLineStart $curLineStart]
  703.     set newLineEnd [nextLineStart $newLineStart]
  704.     if {$newLineStart < [maxPos]} {
  705.         select $newLineStart $newLineEnd
  706.     }
  707. }
  708.  
  709. proc odbBrowseCmdDown {{option 0}} {
  710.     set curPos [getPos]
  711.     set curLineStart [lineStart $curPos]
  712.     set curLineEnd [nextLineStart $curPos]
  713.     
  714.     if {[regexp {^( *).+◊tabl◊\t+∞(.+)∞} [getText $curLineStart $curLineEnd] junk ind addr]} {
  715.         if {[frontierDoScript "defined($addr)"] == "false"} {return}
  716.         if {$option} {killWindow}
  717.         odbBrowse $addr
  718.     }
  719. }
  720.  
  721. proc odbBrowseUp {} {
  722.     set curPos [getPos]
  723.     set curLineStart [lineStart $curPos]
  724.     set curLineEnd [nextLineStart $curPos]
  725.     select $curLineStart $curLineEnd
  726.     
  727.     set newLineStart [prevLineStart $curLineStart]
  728.     set newLineEnd [nextLineStart $newLineStart]
  729.     if {$newLineEnd > 0} {
  730.         select $newLineStart $newLineEnd
  731.     }
  732. }
  733.  
  734. proc odbBrowseCmdUp {{option 0}} {
  735.     regexp {∞(.+)∞} [getText 0 [nextLineStart 0]] junk addr
  736.     if {[set point [string last "." $addr]] >= 0} {
  737.         if {[frontierDoScript "defined($addr)"] == "false"} {return}
  738.         if {$option} {killWindow}
  739.         odbBrowse [string range $addr 0 [expr $point - 1]]
  740.     }
  741. }
  742.  
  743. proc odbBrowserAddCells {pos cells indLevel} {
  744.     
  745.     set tmp ""
  746.     set colorCodes ""
  747.     set lastPos $pos
  748.     
  749.     foreach cell $cells {
  750.         set cellName [lindex $cell 0]
  751.         set cellType [lindex $cell 1]
  752.         set cellAddr [lindex $cell 2]
  753.         
  754.         set parts [odbBrowseGetLineParts $cellName $cellType $cellAddr $indLevel]
  755.         
  756.         set indPart [lindex $parts 0]
  757.         set namePart [lindex $parts 1]
  758.         set typePartPad [lindex $parts 2]
  759.         set typePart [lindex $parts 3]
  760.         set addrPart [lindex $parts 4]
  761.         
  762.         set nameStart [expr $lastPos + [string length $indPart]]
  763.         set nameEnd [expr $nameStart + [string length $namePart]]
  764.         
  765.         if {$cellType == "TEXT" || $cellType == "wptx"} {
  766.             lappend colorCodes [concat $nameStart 3]
  767.             lappend colorCodes [concat $nameEnd 0]
  768.         } elseif {$cellType == "tabl"} {
  769.             lappend colorCodes [concat $nameStart 5]
  770.             lappend colorCodes [concat $nameEnd 0]
  771.         } else {
  772.             lappend colorCodes [concat $nameStart 1]
  773.             lappend colorCodes [concat $nameEnd 0]
  774.         }
  775.         
  776.         set typeStart [expr $lastPos + [string length $indPart] + [string length $namePart] + [string length $typePartPad]]
  777.         set typeEnd [expr $typeStart + [string length $typePart]]
  778.         lappend colorCodes [concat $typeStart 4]
  779.         lappend colorCodes [concat $typeEnd 0]
  780.         
  781.         set line ""
  782.         append line $indPart $namePart $typePartPad $typePart $addrPart "\n"
  783.         append tmp $line
  784.         
  785.         set lastPos [expr $lastPos + [string length $line]]
  786.     }
  787.     
  788.     select $pos $pos
  789.     setWinInfo read-only 0
  790.     
  791.     insertText $tmp
  792.     
  793.     foreach colorCode $colorCodes {
  794.         insertColorEscape [lindex $colorCode 0] [lindex $colorCode 1]
  795.     }
  796.     
  797.     setWinInfo dirty 0
  798.     setWinInfo read-only 1
  799.     eval sizeWin [lrange [getGeometry] 2 end]
  800. }
  801.  
  802. proc odbBrowseRight {} {
  803.     set curPos [getPos]
  804.     set curLineStart [lineStart $curPos]
  805.     set curLineEnd [nextLineStart $curPos]
  806.     
  807.     if {[regexp {^( *).+◊tabl◊\t+∞(.+)∞} [getText $curLineStart $curLineEnd] junk ind addr]} {
  808.         set nextIndString [odbGetNextIndString $ind]
  809.         set nextLineText [getText [nextLineStart $curLineStart] [nextLineStart [nextLineStart $curLineStart]]]
  810.         if {![regexp "^$nextIndString" $nextLineText junk]} {
  811.             if {[frontierDoScript "defined($addr)"] == "false"} {return}            
  812.             set cells [frontierDoAlphaScript "Alpha.getCellData(@$addr)"]
  813.             odbBrowserAddCells $curLineEnd $cells [odbGetIndLevel $nextIndString]
  814.             
  815.         }
  816.     }
  817.     
  818.     select $curLineStart $curLineEnd
  819. }
  820.  
  821. proc odbBrowseLeft {} {
  822.     set curPos [getPos]
  823.     set curLineStart [lineStart $curPos]
  824.     set curLineEnd [nextLineStart $curPos]
  825.     
  826.     if {[regexp {^( *).+∞(.+)∞} [getText $curLineStart $curLineEnd] junk ind elems]} {
  827.         set pos [nextLineStart $curLineStart]
  828.         set start $pos
  829.         set nextIndString [odbGetNextIndString $ind]
  830.         while {[regexp "^$nextIndString" [getText $pos [nextLineStart $pos]] junk]} {
  831.             set pos [nextLineStart $pos]
  832.         }
  833.         setWinInfo read-only 0
  834.         deleteText $start $pos
  835.         setWinInfo dirty 0
  836.         setWinInfo read-only 1
  837.     }
  838.     select $curLineStart $curLineEnd
  839. }
  840.  
  841. proc odbBrowseEditObj {} {
  842.     set curPos [getPos]
  843.     set curLineStart [lineStart $curPos]
  844.     set curLineEnd [nextLineStart $curPos]
  845.     
  846.     if {[regexp {^.+∞(.+)∞} [getText $curLineStart $curLineEnd] junk addr]} {
  847.         frontierDoAlphaScript "Alpha.editCell(@$addr)"
  848.     }
  849. }
  850.  
  851. proc odbBrowse {{addr root}} {
  852.     if {$addr == ""} {
  853.         return
  854.     }
  855.     
  856.     global odbBrowserTypeOffset
  857.     global odbBrowserTabLength
  858.     
  859.     set cell [frontierDoAlphaScript "Alpha.getCellData(@$addr, false)"]
  860.     set wtitle [lindex [lindex $cell 0] 2]
  861.     regsub -all {[][]} $wtitle "" wtitle
  862.     set wtitle "* Frontier “$wtitle” *"
  863.     
  864.     if {[lsearch [winNames] $wtitle] >= 0} {
  865.         bringToFront $wtitle
  866.     } else {
  867.         new -n $wtitle -g 4 42 449 300 -m Odb
  868.         setWinInfo dirty 0
  869.         odbBrowserAddCells 0 $cell 0
  870.         select 0 [nextLineStart 0]
  871.         odbBrowseRight
  872.     }
  873. }
  874.  
  875. bind '\r'        odbBrowseEditObj    Odb
  876. bind enter        odbBrowseEditObj    Odb
  877.  
  878. bind down         odbBrowseDown        Odb
  879. bind down <c>    odbBrowseCmdDown    Odb
  880. bind down <co>    {odbBrowseCmdDown 1}    Odb
  881. bind up            odbBrowseUp            Odb
  882. bind up <c>        odbBrowseCmdUp        Odb
  883. bind up <co>    {odbBrowseCmdUp 1}        Odb
  884. bind right        odbBrowseRight        Odb
  885. bind left        odbBrowseLeft        Odb
  886.  
  887. if {![info exists frontierVersion] || $frontierVersion != 2.12} {
  888.     dialog -w 400 -h 180 -t "Welcome to Frontier menu 2.1.4" 70 10 390 30 \
  889.       -t "Make sure you install all the scripts in the folder 'Frontier verbs' into Frontier.\r\
  890.       If you upgrade from a previous version make sure you install the Frontier verbs which have been updated.\r\
  891.       You find information in the file 'Frontier Help'." 10 50 390 135 \
  892.       -b OK 20 150 85 170
  893.     catch {edit -r -c "$HOME:Help:Frontier Help"}
  894.     addDef frontierVersion 2.12
  895.     set frontierHasWarned 1
  896. }
  897.  
  898.  
  899. catch {frontierBuildScriptMenu}
  900. catch {unset frontierHasWarned}
  901.